home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / SNNSV32.ZIP / SNNSv3.2 / xgui / sources / ui_edit.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-04-25  |  2.1 KB  |  66 lines

  1. /*****************************************************************************
  2.   FILE           : ui_edit.h
  3.   SHORTNAME      : edit.h
  4.   SNNS VERSION   : 3.2
  5.  
  6.   PURPOSE        : callbacks for editing sites and f-types
  7.   NOTES          :
  8.  
  9.   AUTHOR         : Tilman Sommer
  10.   DATE           : 25.9.1990
  11.  
  12.   CHANGED BY     : Guenter Mamier
  13.   IDENTIFICATION : @(#)ui_edit.h    1.11 3/2/94
  14.   SCCS VERSION   : 1.11
  15.   LAST CHANGE    : 3/2/94
  16.  
  17.              Copyright (c) 1990-1994  SNNS Group, IPVR, Univ. Stuttgart, FRG
  18.              
  19. ******************************************************************************/
  20.  
  21.  
  22. #ifndef _UI_EDIT_DEFINED_
  23. #define _UI_EDIT_DEFINED_
  24.  
  25.  
  26.  
  27.  
  28. extern void  ui_edit_selectFunction (Widget, int, caddr_t);
  29. extern void  ui_edit_setSite (Widget, struct SimpleListType *, caddr_t);
  30. extern void  ui_edit_listSetSite (Widget, int, XawListReturnStruct *);
  31. extern void  ui_edit_setCurrentSite (char *);
  32. extern void  ui_edit_newSite (Widget, struct SimpleListType *, caddr_t);
  33. extern void  ui_edit_deleteSite (Widget, struct SimpleListType *, caddr_t);
  34. extern void  ui_edit_displayFirstFType (struct SimpleListType *);
  35. extern void  ui_edit_ftypeAddSite (Widget, struct SimpleListType *, caddr_t);
  36. extern void  ui_edit_ftypeDeleteSite(Widget, struct SimpleListType *, caddr_t);
  37. extern void  ui_edit_chooseFType (Widget, struct SimpleListType *, caddr_t);
  38. extern void  ui_edit_setFType (Widget, struct SimpleListType *, caddr_t);
  39. extern void  ui_edit_newFType (Widget, struct SimpleListType *, caddr_t);
  40. extern void  ui_edit_deleteFType (Widget, struct SimpleListType *, caddr_t);
  41.  
  42.  
  43.     /* widgets in the edit panels */
  44. extern Widget ui_edit_siteFuncNameWidget;
  45. extern Widget ui_edit_siteNameWidget;
  46. extern Widget ui_edit_actFuncNameWidget;
  47. extern Widget ui_edit_outFuncNameWidget;
  48. extern Widget ui_edit_ftypeNameWidget;
  49.  
  50.  
  51.     /* the following values are available after */
  52.     /* the call of ui_list_buildList */
  53. extern int   ui_list_noOfFtypes;     /* no of ftypes reported by the kernel */
  54.  
  55.     /* names */
  56. extern char    ui_edit_siteName[];
  57. extern char    ui_edit_siteFuncName[];
  58.  
  59.  
  60.  
  61. #endif /* _UI_EDIT_DEFINED_ */
  62.  
  63.  
  64. /* end of file */
  65. /* lines: 63 */
  66.